home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 031a / wedl100.zip / DEMO.MAK < prev    next >
Text File  |  1991-10-14  |  2KB  |  47 lines

  1.  
  2. #-----------------------------------------------------------------------------#
  3. #                                                                             #
  4. #           WEDL - Windows Enhanced Dialog Library                            #
  5. #           Copyright (c) 1991, Mike Smedley                                  #
  6. #           All Rights Reserved                                               #
  7. #           Module:  DEMO.MAK                                                 #
  8. #                                                                             #
  9. #-----------------------------------------------------------------------------#
  10.  
  11. #   Microsoft C 6.0
  12. COMP = cl -c -AS -Gsw -Ox -Zpe -W3
  13. LINK = link /NOD
  14. LIBS = libw slibcew
  15.  
  16. #   Borland C++ 2.0
  17. # COMP = bcc -c -ms -w -WS -O -Z -Ic:\borlandc\include
  18. # LINK = tlink /Twe /v /n /c /Lc:\borlandc\lib c0ws
  19. # LIBS = cwins cs import maths
  20.  
  21. demo.exe:   demo.obj demo1.obj demo2.obj demo3.obj demo4.obj demo.def \
  22.             demo.res demo.h demohelp.hlp
  23.     $(LINK) demo demo1 demo2 demo3 demo4,demo,demo,$(LIBS) wedl-e,demo
  24.     rc demo.res
  25.  
  26. demo.obj:   demo.c demo.mak demo.h wedl.h
  27.     $(COMP) demo.c
  28.  
  29. demo1.obj:  demo1.c demo.mak demo.h demohelp.h wedl.h
  30.     $(COMP) demo1.c
  31.  
  32. demo2.obj:  demo2.c demo.mak demo.h demohelp.h wedl.h
  33.     $(COMP) demo2.c
  34.  
  35. demo3.obj:  demo3.c demo.mak demo.h demohelp.h wedl.h
  36.     $(COMP) demo3.c
  37.  
  38. demo4.obj:  demo4.c demo.mak demo.h wedl.h
  39.     $(COMP) demo4.c
  40.  
  41. demo.res:   demo.rc demo.h demo.mak wedl.h
  42.     rc -r demo.rc
  43.  
  44. demohelp.hlp:   demohelp.hpj demohelp.rtf demohelp.h
  45.     hc demohelp.hpj
  46.  
  47.